/* CSS Document */
a:link{
  text-decoration:none;
}
a:hover{
  text-decoration:underline;
}

/* 配合bootsrap 内容图片自适应 */
img {
  max-width: 100%;
  width: 100% \9;

}


/* 滚动到顶部 */
#btnScrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #EC982C;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
}
#btnScrollTop:hover {
    background-color: #E77817;
}
/* 滚动到顶部end */

/* 多余文字切除 */
.overflowClip_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.overflowClip_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* 模块晃动 */
.box2 {
    height: 86px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e4ecf3;
    margin: 7px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* 友情link */
        .link-container a {
            padding: 0.375rem 0.375rem;
            margin: 0.25rem;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0.25rem;
            color: #212529;
            text-decoration: none;
            transition: background-color 0.2s ease-in-out;
        }
        .link-container a:hover {
            background-color: #e9ecef;
        }


.link1,.link1 a{
    color: white;
}
.link2,.link2 a{
    color: #2D2D2D;
}
